projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32e6b57
)
(region_limit): Support any non-zero value of BEGINNINGP.
author
Eli Zaretskii
<eliz@gnu.org>
Sun, 7 Sep 2003 16:26:06 +0000
(16:26 +0000)
committer
Eli Zaretskii
<eliz@gnu.org>
Sun, 7 Sep 2003 16:26:06 +0000
(16:26 +0000)
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index b057795f2edc3aa7a34393bceda962baf35377fd..0b71d10515596175e70e5835ba96781954687ff7 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-299,7
+299,7
@@
region_limit (beginningp)
if (NILP (m))
error ("The mark is not set now, so there is no region");
- if ((PT < XFASTINT (m)) ==
beginningp
)
+ if ((PT < XFASTINT (m)) ==
(beginningp != 0)
)
m = make_number (PT);
return m;
}